projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96c188b
)
(edmacro-parse-keys): Remove redundant test for ?.
author
Erik Naggum
<erik@naggum.no>
Wed, 5 Feb 1997 01:33:07 +0000
(
01:33
+0000)
committer
Erik Naggum
<erik@naggum.no>
Wed, 5 Feb 1997 01:33:07 +0000
(
01:33
+0000)
lisp/edmacro.el
patch
|
blob
|
history
diff --git
a/lisp/edmacro.el
b/lisp/edmacro.el
index b61cc559fd220cde90bf445d33d55f32675b7e97..150160c802d4ba712f28a889bb58cef3da4a17ad 100644
(file)
--- a/
lisp/edmacro.el
+++ b/
lisp/edmacro.el
@@
-698,8
+698,7
@@
If START or END is negative, it counts from the end."
;; and C-? is not used (we use DEL instead).
(string-match "[@-_a-z]" word))
(setq key (list (+ bits (- ?\C-\^@)
- (if (equal word "?") 127
- (logand (aref word 0) 31))))))
+ (logand (aref word 0) 31)))))
(t
(setq key (list (+ bits (aref word 0)))))))))
(when key